home *** CD-ROM | disk | FTP | other *** search
- #ifndef _H_CPP_ENTRY
- #define _H_CPP_ENTRY
-
- #ifndef lint
- static const char cpp_entry_sccs_id[] = "%W% %G% %U%: Component-%Y% %Q% " ;
- #endif
-
-
- // This file contains the declaration of some of the functions that are
- // necessary to make cfront generated code work in the kernel mode of
- // of AIX 3.2. Must be include in the main file of every kernel extension.
-
- #ifdef NULL
- #undef NULL
- #define NULL 0
- #else
- #define NULL 0
- #endif // handle NULL definition here
-
- #include "trace.h"
-
- #ifdef _KERNEL
-
- extern "C" {
- extern void _general_entry() ;
- extern void _general_exit( int ) ;
- }
-
- #endif // _KERNEL
-
- class Exemplar
- {
- public :
- Exemplar ( ) ;
- } ; // just a placekeeper
-
- // pull in the rtti stuff
- #include "rtti_entry.h"
-
- #include "ImplSpec.h"
- #include "BaseMeta.h"
-
- #endif // _H_CPP_ENTRY
-